helpstring("Compares two strings (case sensitive) and returns less than zero if first string is less, zero if strings are equal, or greater than zero if first string is greater"),
]
int WINAPI lstrcmp([in] LPSTR lpszString1,
[in] LPSTR lpszString2);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcmpiA"),
#else
entry("lstrcmpi"),
#endif
helpstring("Compares two strings (case insensitive) and returns less than zero if first string is less, zero if strings are equal, or greater than zero if first string is greater"),
]
int WINAPI lstrcmpi([in] LPSTR lpszString1,
[in] LPSTR lpszString2);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcpyA"),
#else
entry("lstrcpy"),
#endif
helpstring("Copies source string to destination and returns pointer to result"),
]
LONG WINAPI lstrcpy([in] LPSTR lpszDst, [in] LPSTR lpszSrc);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcpyA"),
#else
entry("lstrcpy"),
#endif
helpstring("Copies source string to destination and returns pointer to result"),
]
LONG WINAPI lstrcpyFromLp([in] LPSTR lpszDst, [in] LONG lpszSrc);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcpyA"),
#else
entry("lstrcpy"),
#endif
helpstring("Copies source string to destination and returns pointer to result"),
]
LONG WINAPI lstrcpyToLp([in] LONG lpszDst, [in] LPSTR lpszSrc);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcatA"),
#else
entry("lstrcat"),
#endif
helpstring("Concatenates source string onto destination and returns pointer to result"),
]
LONG WINAPI lstrcat([in] LPSTR lpszDst, [in] LPSTR lpszSrc);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrlenA"),
#else
entry("lstrlen"),
#endif
helpstring("Returns length of string"),
]
int WINAPI lstrlen([in] LPSTR lpsz);
[
#ifdef WIN32
usesgetlasterror,
entry("lstrcpynA"),
#else
entry("lstrcpyn"),
#endif
helpstring("Copies given count of characters from source string to destination and returns pointer to result"),
]
LONG WINAPI lstrcpyn([in] LPSTR lpszDst, [in] LPSTR lpszSrc,
[in] int cChars);
[
#ifdef WIN32
usesgetlasterror,
entry("RtlMoveMemory"),
#else
entry("hmemcpy"),
#endif
helpstring("Copies memory from pointer to byte array"),
]
void WINAPI CopyMemoryLpToByte([in, out] BYTE FAR * pvDest,
[in] DWORD pvSrc, [in] DWORD cbCopy);
[
#ifdef WIN32
usesgetlasterror,
entry("RtlMoveMemory"),
#else
entry("hmemcpy"),
#endif
helpstring("Copies memory from pointer to byte array"),